home *** CD-ROM | disk | FTP | other *** search
- @rem If you don't use install, copy the .DLLs and .VBXs to your WIndows
- @rem subdirectory if they don't already exist.
- @echo off
- if %1!==! goto how
- if %2!==! goto how
- if %3!==! goto how
- if not exist %3\win.com goto badwin
- goto goodwin
- :badwin
- Echo your Windows subdirectory is not %3, please check and install again
- echo.
- echo.
- echo.
- echo.
- echo.
- goto how
- :goodwin
- if not exist %2 md %2
- xcopy %1\*.* %2
- if not exist %3\vbrun200.dll xcopy vbrun200.dll %3
- if not exist %3\ddeml.dll xcopy ddeml.dll %3
- xcopy %2\*.vbx %3
- goto end
- :how
- Echo Install [source drv:\subdir] [destination drv:\subdir] [Windows drv:\subdir]
- echo.
- Echo Example "install B: c:\ohmyword c:\windows"
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- echo.
- :end
-